home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 6_functions / utime < prev    next >
Text File  |  2001-03-21  |  877b  |  28 lines

  1. Synopsis:
  2.    $time()
  3.    $utime()
  4.  
  5. Technical:
  6.    These functions return the current time in utc format.  The only
  7.    difference between the two is that $time() is accurate to the second,
  8.    while $utime() is accurate to the microsecond.  Neither function takes
  9.    any arguments.
  10.  
  11. Practical:
  12.    Both functions return a long unsigned integer representing the number
  13.    of seconds since 18:00, 31 December 1969, which can be parsed into a
  14.    human-readable format by $stime().  In addition, $utime() returns an
  15.    additional integer, representing the number of microseconds past the
  16.    first number that the current time is.
  17.  
  18. Returns:
  19.    utc time, plus number of microseconds past utc time for $utime()
  20.  
  21. Examples:
  22.    $time()      might return "850381369"
  23.    $utime()     might return "850381369 56367", which is "850381369.056367"
  24.  
  25. See Also:
  26.    stime(6)
  27.  
  28.